Advertisement
hypvd

timechanger

Feb 28th, 2020
2,821
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. local gui = Instance.new("ScreenGui")
  2. local stuff = Instance.new("TextBox")
  3. local enter = Instance.new("TextButton")
  4. local fortnite = Instance.new("ImageLabel")
  5. gui.Name = "gui"
  6. gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  7. gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8.  
  9. stuff.Name = "stuff"
  10. stuff.Parent = gui
  11. stuff.BackgroundColor3 = Color3.new(1, 1, 1)
  12. stuff.BorderSizePixel = 5
  13. stuff.Size = UDim2.new(0, 500, 0, 200)
  14. stuff.Font = Enum.Font.SourceSans
  15. stuff.Text = ""
  16. stuff.TextColor3 = Color3.new(0, 0, 0)
  17. stuff.TextSize = 14
  18.  
  19. enter.Name = "enter"
  20. enter.Parent = gui
  21. enter.BackgroundColor3 = Color3.new(1, 1, 1)
  22. enter.BorderSizePixel = 5
  23. enter.Position = UDim2.new(0, 500, 0, 0)
  24. enter.Size = UDim2.new(0, 200, 0, 200)
  25. enter.Font = Enum.Font.SourceSans
  26. enter.Text = "enter"
  27. enter.TextColor3 = Color3.new(0, 0, 0)
  28. enter.TextSize = 14
  29.  
  30. fortnite.Name = "fortnite"
  31. fortnite.Parent = gui
  32. fortnite.BackgroundColor3 = Color3.new(1, 1, 1)
  33. fortnite.Size = UDim2.new(0, 700, 0, 200)
  34. fortnite.Visible = false
  35. fortnite.Image = "rbxassetid://181207776"
  36.  
  37. local function PJLGZPB_fake_script() -- gui.main
  38. local script = Instance.new('LocalScript', gui)
  39.  
  40. local textbox = script.Parent.stuff
  41. local enter = script.Parent.enter
  42. local image = script.Parent.fortnite
  43.  
  44. enter.MouseButton1Down:Connect(function()
  45. local lighting = game:GetService("Lighting")
  46. lighting.TimeOfDay = textbox.Text
  47. image.Visible = true
  48. wait(1)
  49. image.Visible = false
  50. end)
  51. end
  52. coroutine.wrap(PJLGZPB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement