Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Millionaire Empire Tycoon Script
- --Made by Boe_Jiden333
- local args = {[1] = 9e16*50};
- game:GetService("ReplicatedStorage"):WaitForChild("RespawnService"):FireServer(unpack(args));
- local plyr = game.Players.LocalPlayer;
- local char = plyr.Character;
- local torso = char:WaitForChild("Torso");
- local Tycoons = workspace.Tycoons;
- local Tycoon = nil;
- for _, v in pairs(Tycoons:GetChildren()) do
- if v:FindFirstChild("Owner") and v.Owner:IsA("StringValue") and v.Owner.Value == plyr.Name then
- Tycoon = v;
- break;
- end
- end
- local ButtonsFolder = Tycoon.ButtonsFolder;
- for _, v in pairs(ButtonsFolder:GetChildren()) do
- if not v:FindFirstChild("GamePass") then
- if v:FindFirstChild("Head") then
- if v.Head:FindFirstChild("TouchInterest") then
- firetouchinterest(torso, v.Head, 0);
- wait();
- end
- end
- end
- end
- function ButtonAdded(Button)
- wait(0.1);
- if not Button:FindFirstChild("GamePass") then
- if Button:FindFirstChild("Head") then
- if Button.Head:FindFirstChild("TouchInterest") then
- firetouchinterest(torso, Button.Head, 0);
- wait();
- end
- end
- end
- end
- ButtonsFolder.ChildAdded:Connect(ButtonAdded)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement