MADE BY mewantscripts
FEATURE:
- What it does is replaces current stand to random shiny.
GAME LINK:
YOUR BIZARRE ADVENTURE
SCRIPT:
local players = game:GetService("Players");
local runService = game:GetService("RunService");
local replicatedStorage = game:GetService("ReplicatedStorage");
local localPlayer = players.LocalPlayer;
local playerData = replicatedStorage:WaitForChild("Player_Data");
local localData = playerData:WaitForChild(localPlayer.Name);
local stand = localData:WaitForChild("Shiny");
local remotes = replicatedStorage:WaitForChild("Remotes");
local sendServer = remotes:WaitForChild("To_Server");
local handleStand = sendServer:WaitForChild("Handle_Initiate_S_");
while task.wait() do
if (not table.find(stands, stand.Value)) then
if (game.PlaceId ~= 2809202155) then
localPlayer:Kick("use the script in the main menu");
else
handleStand:InvokeServer("check_stand");
end
end
end