Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --// Config by Skylanders320, Credits to the original script owners/makers.
- local main = script.Parent:WaitForChild("Main")
- local t = script.Parent:WaitForChild("Toggle")
- local rs = game:GetService("ReplicatedStorage")
- t.MouseEnter:Connect(function()
- t.TextColor3 = Color3.fromRGB(255,255,0)
- end)
- t.MouseLeave:Connect(function()
- t.TextColor3 = Color3.fromRGB(255,255,255)
- end)
- t.MouseButton1Click:Connect(function()
- if main.Visible == true then
- main.Visible = false
- else
- main.Visible = true
- end
- end)
- main.AZURE.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Azure:FireServer(main.Target.Text)
- end)
- main.CRES.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Cres:FireServer(main.Target.Text)
- end)
- main.KICKISHER.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Kickisher:FireServer(main.Target.Text)
- end)
- main.STARG.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Star:FireServer(main.Target.Text)
- end)
- main.KARMA.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Karma:FireServer(main.Target.Text)
- end)
- main.RUINS.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Ruins:FireServer(main.Target.Text)
- end)
- main.RAINBOW.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Rainbow:FireServer(main.Target.Text)
- end)
- main.KB.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Kb:FireServer(main.Target.Text)
- end)
- main.NSG.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Nsg:FireServer(main.Target.Text)
- end)
- script.Parent.Respawn.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.Respawn:FireServer(main.Target.Text)
- end)
- script.Parent.DestroyGui.MouseButton1Click:Connect(function()
- rs.SkyGuiRemotes.DestroyGui:FireServer()
- end)
- --// End of script
Advertisement
Add Comment
Please, Sign In to add comment