Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for i, v in pairs(game.Players:GetChildren()) do--this is going down in order of evrything in players, v is the variable
- p = v.Character
- local p = game.Players.LocalPlayer.Character
- local weld = Instance.new("Weld",p.Torso)
- weld.Part0 = p.Torso
- local train = Instance.new("Part",p.Torso)
- train.Anchored = true
- train.CanCollide = false
- train.Size = Vector3.new(3,2,6)
- train.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
- weld.Part1 = train
- weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(0,math.rad(180),0)
- train.Anchored = false
- local TrainMesh = Instance.new("SpecialMesh",train)
- TrainMesh.MeshType = Enum.MeshType.FileMesh
- TrainMesh.Scale = Vector3.new(0.01,0.01,0.01)
- TrainMesh.MeshId = "rbxassetid://430210147"
- TrainMesh.TextureId = "rbxassetid://430210159"
- local weld2 = Instance.new("Weld",p.Torso)
- weld2.Part0 = p.Torso
- local Smoke = Instance.new("Part",p.Torso)
- Smoke.Anchored = true
- Smoke.CanCollide = false
- Smoke.Size = Vector3.new(1,1,1)
- Smoke.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0)
- weld2.Part1 = Smoke
- weld2.C1 = CFrame.new(0,-4,3.5)-- * CFrame.Angles(0,math.rad(180),0)
- Smoke.Anchored = false
- Smoke.Transparency = 1;
- p.Humanoid.WalkSpeed = 60;
- for i,v in pairs(p:GetChildren()) do
- if v:IsA("Part") then
- v.Transparency = 1;
- elseif v:IsA("Hat") then
- v:Destroy()
- elseif v:IsA("Model") then
- v:Destroy()
- end
- end
- end
- local playerLeaderstats = {}
- for i, v in pairs(game.Players:GetChildren()) do
- table.insert(playerLeaderstats, v)
- end
- wait( )
- -- Objects
- local ToadGui = Instance.new("ScreenGui")
- local OpenGui = Instance.new("Frame")
- local OpenClose = Instance.new("TextButton")
- local Scripts = Instance.new("Frame")
- local Thumb = Instance.new("ImageLabel")
- local Info = Instance.new("TextLabel")
- local MilkAndCookies = Instance.new("TextButton")
- local ToadReel = Instance.new("TextButton")
- local ItsRainingMen = Instance.new("TextButton")
- -- Properties
- ToadGui.Name = "ToadGui"
- ToadGui.Parent = game.Players.LocalPlayer.PlayerGui
- OpenGui.Name = "OpenGui"
- OpenGui.Parent = ToadGui
- OpenGui.BackgroundColor3 = Color3.new(0, 0, 0)
- OpenGui.BackgroundTransparency = 0.80000001192093
- OpenGui.BorderColor3 = Color3.new(0, 0.333333, 1)
- OpenGui.Position = UDim2.new(0, 26, 0, 352)
- OpenGui.Size = UDim2.new(0, 113, 0, 23)
- OpenClose.Name = "OpenClose"
- OpenClose.Parent = OpenGui
- OpenClose.BackgroundColor3 = Color3.new(0, 0, 0)
- OpenClose.BackgroundTransparency = 0.80000001192093
- OpenClose.BorderColor3 = Color3.new(0, 0.333333, 1)
- OpenClose.Size = UDim2.new(0, 113, 0, 23)
- OpenClose.Font = Enum.Font.SourceSans
- OpenClose.FontSize = Enum.FontSize.Size14
- OpenClose.Text = "Open/Close"
- OpenClose.TextColor3 = Color3.new(0, 0.333333, 1)
- OpenClose.TextSize = 14
- OpenClose.MouseButton1Click:connect(function()
- if Scripts.Visible == false then
- Scripts.Visible = true
- else
- Scripts.Visible = false
- end
- end)
- Scripts.Name = "Scripts"
- Scripts.Parent = ToadGui
- Scripts.BackgroundColor3 = Color3.new(1, 1, 1)
- Scripts.Position = UDim2.new(0, 0, 0, 405)
- Scripts.Size = UDim2.new(0, 243, 0, 298)
- Scripts.Visible = false
- Thumb.Name = "Thumb"
- Thumb.Parent = Scripts
- Thumb.BackgroundColor3 = Color3.new(1, 1, 1)
- Thumb.Size = UDim2.new(0, 243, 0, 298)
- Thumb.Image = "rbxassetid://740491623"
- Info.Name = "Info"
- Info.Parent = Scripts
- Info.BackgroundColor3 = Color3.new(1, 1, 1)
- Info.BackgroundTransparency = 1
- Info.Size = UDim2.new(0, 243, 0, 50)
- Info.Font = Enum.Font.SourceSans
- Info.FontSize = Enum.FontSize.Size14
- Info.Text = "Make Toad Noises"
- Info.TextScaled = true
- Info.TextSize = 14
- Info.TextWrapped = true
- MilkAndCookies.Name = "MilkAndCookies"
- MilkAndCookies.Parent = Scripts
- MilkAndCookies.BackgroundColor3 = Color3.new(1, 1, 1)
- MilkAndCookies.Position = UDim2.new(0, 22, 0, 64)
- MilkAndCookies.Size = UDim2.new(0, 200, 0, 50)
- MilkAndCookies.Font = Enum.Font.SourceSans
- MilkAndCookies.FontSize = Enum.FontSize.Size14
- MilkAndCookies.Text = "Milk And Cookies"
- MilkAndCookies.TextSize = 14
- --[[Function/s being made!]]
- function PlayMusic(ID)
- for i, v in pairs (game.Workspace:GetChildren()) do
- if v:IsA("Sound") then
- v:Remove()
- end
- end
- local music = Instance.new("Sound")
- local asset = "rbxassetid://"
- music.SoundId = asset .. ID
- music.Parent = workspace
- music.Volume = 10
- music.Looped = true
- music:Play()
- end
- --[[Connecting functions!]]
- MilkAndCookies.MouseButton1Down:connect(function()
- PlayMusic(587971443)
- end)
- ToadReel.Name = "ToadReel"
- ToadReel.Parent = Scripts
- ToadReel.BackgroundColor3 = Color3.new(1, 1, 1)
- ToadReel.Position = UDim2.new(0, 22, 0, 149)
- ToadReel.Size = UDim2.new(0, 200, 0, 50)
- ToadReel.Font = Enum.Font.SourceSans
- ToadReel.FontSize = Enum.FontSize.Size14
- ToadReel.Text = "Toad Reel"
- ToadReel.TextSize = 14
- --[[Function/s being made!]]
- function PlayMusic(ID)
- for i, v in pairs (game.Workspace:GetChildren()) do
- if v:IsA("Sound") then
- v:Remove()
- end
- end
- local music = Instance.new("Sound")
- local asset = "rbxassetid://"
- music.SoundId = asset .. ID
- music.Parent = workspace
- music.Volume = 10
- music.Looped = true
- music:Play()
- end
- --[[Connecting functions!]]
- ToadReel.MouseButton1Down:connect(function()
- PlayMusic(445658142)
- end)
- ItsRainingMen.Name = "ItsRainingMen"
- ItsRainingMen.Parent = Scripts
- ItsRainingMen.BackgroundColor3 = Color3.new(1, 1, 1)
- ItsRainingMen.Position = UDim2.new(0, 22, 0, 231)
- ItsRainingMen.Size = UDim2.new(0, 200, 0, 50)
- ItsRainingMen.Font = Enum.Font.SourceSans
- ItsRainingMen.FontSize = Enum.FontSize.Size14
- ItsRainingMen.Text = "It's Raining Men"
- ItsRainingMen.TextSize = 14
- --[[Function/s being made!]]
- function PlayMusic(ID)
- for i, v in pairs (game.Workspace:GetChildren()) do
- if v:IsA("Sound") then
- v:Remove()
- end
- end
- local music = Instance.new("Sound")
- local asset = "rbxassetid://"
- music.SoundId = asset .. ID
- music.Parent = workspace
- music.Volume = 10
- music.Looped = true
- music:Play()
- end
- --[[Connecting functions!]]
- ItsRainingMen.MouseButton1Down:connect(function()
- PlayMusic(141509625)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement