--object 2 lua was used here made by winner13482 --Easiest shi i wrote in my entire life local I=Instance.new local V=Vector3.new local V2=Vector2.new local CF=CFrame.new local C=Color3.new local B=BrickColor.new local D=UDim.new local U=UDim2.new local R=Rect.new local NR=NumberRange.new local NS=NumberSequence.new local NSK=NumberSequenceKeypoint.new local CS=ColorSequence.new local CSK=ColorSequenceKeypoint.new local PP=PhysicalProperties.new local Axes=Axes local Faces=Faces local Ray=Ray local Region3=Region3 local TweenInfo=TweenInfo local DateTime=DateTime local t={} t[1]=I("ScreenGui") t[1].Name="Verityobesity" t[1].ResetOnSpawn=false t[1].ZIndexBehavior=Enum.ZIndexBehavior.Sibling t[2]=I("TextButton") t[2].BackgroundColor3=C(0,0,0) t[2].BorderColor3=C(1,0.8784,0.5098) t[2].BorderSizePixel=4 t[2].Position=U(0.8551,0,0.3493,0) t[2].Size=U(0.1311,0,0.07496,0) t[2].FontFace=Font.new("rbxasset://fonts/families/SourceSansPro.json",Enum.FontWeight.Regular,Enum.FontStyle.Normal) t[2].Text="Jumpscare all once" t[2].TextColor3=C(1,1,1) t[2].TextScaled=true t[2].TextSize=14 t[2].TextStrokeColor3=C(1,1,1) t[2].TextWrapped=true t[2].Parent=t[1] t[3]=I("TextButton") t[3].Name="TextButton2" t[3].BackgroundColor3=C(0,0,0) t[3].BorderColor3=C(1,0.8784,0.5098) t[3].BorderSizePixel=4 t[3].Position=U(0.8551,0,0.2594,0) t[3].Size=U(0.1311,0,0.07496,0) t[3].FontFace=Font.new("rbxasset://fonts/families/SourceSansPro.json",Enum.FontWeight.Regular,Enum.FontStyle.Normal) t[3].Text="jumpscare auto (off)" t[3].TextColor3=C(1,1,1) t[3].TextScaled=true t[3].TextSize=14 t[3].TextStrokeColor3=C(1,1,1) t[3].TextWrapped=true t[3].Parent=t[1] task.spawn(function() t[2].Activated:Connect(function() game:GetService("ReplicatedStorage").JumpScare:FireServer() end) end) task.spawn(function() local auto = false t[3].Activated:Connect(function() auto = not auto end) while task.wait() do if auto == true then t[3].Text = 'jumpscare auto (on)' game:GetService("ReplicatedStorage").JumpScare:FireServer() else t[3].Text = 'jumpscare auto (off)' end end end) t[1].Parent=game.CoreGui