Advertisement
Robloxfan777back

sunset coast thingy

Jan 18th, 2020
1,254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1.  
  2. local Players = game:GetService("Players")
  3. local LocalPlayer = Players.LocalPlayer
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Frame_2 = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local cuffs = Instance.new("TextButton")
  9. local taser = Instance.new("TextButton")
  10. local baton = Instance.new("TextButton")
  11. --Properties:
  12. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.BorderSizePixel = 0
  17. Frame.Position = UDim2.new(0.453530878, 0, 0.350431442, 0)
  18. Frame.Size = UDim2.new(0, 412, 0, 440)
  19. Frame.Active = true
  20. Frame.Selectable = true
  21. Frame.Draggable = true
  22.  
  23. Frame_2.Parent = Frame
  24. Frame_2.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  25. Frame_2.Position = UDim2.new(0, 0, -0.00142586604, 0)
  26. Frame_2.Size = UDim2.new(0, 412, 0, 31)
  27.  
  28. TextLabel.Parent = Frame_2
  29. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  30. TextLabel.BackgroundTransparency = 1
  31. TextLabel.BorderSizePixel = 0
  32. TextLabel.Position = UDim2.new(0.337378651, 0, 0, 0)
  33. TextLabel.Size = UDim2.new(0, 117, 0, 31)
  34. TextLabel.Font = Enum.Font.SourceSans
  35. TextLabel.Text = "Sunset coast thingy - credits to I Eat Glass for unlock staff rooms script"
  36. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  37. TextLabel.TextSize = 14
  38.  
  39. cuffs.Name = "cuffs"
  40. cuffs.Parent = Frame
  41. cuffs.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  42. cuffs.BorderSizePixel = 0
  43. cuffs.Position = UDim2.new(0.237864077, 0, 0.186363637, 0)
  44. cuffs.Size = UDim2.new(0, 200, 0, 50)
  45. cuffs.Font = Enum.Font.SourceSansBold
  46. cuffs.Text = "Give Handcuffs"
  47. cuffs.TextColor3 = Color3.new(1, 1, 1)
  48. cuffs.TextSize = 20
  49. cuffs.MouseButton1Click:Connect(function()
  50. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  51. wait(1)
  52. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(49.0864792, 3.4830749, -14.747683)
  53. wait(1)
  54.  
  55. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  56. end)
  57.  
  58. taser.Name = "taser"
  59. taser.Parent = Frame
  60. taser.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  61. taser.BorderSizePixel = 0
  62. taser.Position = UDim2.new(0.237864077, 0, 0.37954545, 0)
  63. taser.Size = UDim2.new(0, 200, 0, 50)
  64. taser.Font = Enum.Font.SourceSansBold
  65. taser.Text = "Give Taser"
  66. taser.TextColor3 = Color3.new(1, 1, 1)
  67. taser.TextSize = 20
  68. taser.MouseButton1Click:Connect(function()
  69. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  70. wait(1)
  71. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(49.2320099, 3.95261335, -30.764287)
  72. wait(1)
  73. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  74. end)
  75.  
  76. baton.Name = "baton"
  77. baton.Parent = Frame
  78. baton.BackgroundColor3 = Color3.new(0.32549, 0.32549, 0.32549)
  79. baton.BorderSizePixel = 0
  80. baton.Position = UDim2.new(0.237864077, 0, 0.565909088, 0)
  81. baton.Size = UDim2.new(0, 200, 0, 50)
  82. baton.Font = Enum.Font.SourceSansBold
  83. baton.Text = "Give Baton"
  84. baton.TextColor3 = Color3.new(1, 1, 1)
  85. baton.TextSize = 20
  86. baton.MouseButton1Click:Connect(function()
  87. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  88. wait(1)
  89. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(49.0934372, 3.48476434, -23.714136)
  90. wait(1)
  91.  
  92. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  93. end)
  94.  
  95.  
  96.  
  97. -- Scripts:
  98. for i,v in pairs(workspace:GetChildren()) do
  99. if v.Name == "Troller" then
  100. v:Destroy()
  101. elseif v.Name == "SuiteLane" then
  102. v:Destroy()
  103. end
  104. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement