of     1   

itsjustatlas
#228416751Monday, December 04, 2017 4:34 AM GMT

local function onTouch() workspace.PartPart.Position = Vector3.new(111111,0,0) game.Lighting.TimeOfDay = "01:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "02:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "03:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "04:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "05:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "06:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "07:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "08:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "09:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "10:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "11:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "12:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "13:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "14:00:00" end script.Parent.Touched:connect(onTouch) Ok, it might be really obvious, but when i join a game this instantly loads and cannot find out why it does it #code if 2+2-1 == 3 then error("Quickest mafs in the west") end
128Gigabytes
#228416873Monday, December 04, 2017 4:39 AM GMT

Probably because something touches the part.
itsjustatlas
#228416953Monday, December 04, 2017 4:43 AM GMT

Unfortunately nothing except air is touching it (Air is not a part or anything ok) #code if 2+2-1 == 3 then error("Quickest mafs in the west") end
greedyawesomeman
#228417095Monday, December 04, 2017 4:48 AM GMT

local function onTouch(hit) print(hit.Name); workspace.PartPart.Position = Vector3.new(111111,0,0) game.Lighting.TimeOfDay = "01:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "02:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "03:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "04:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "05:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "06:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "07:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "08:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "09:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "10:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "11:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "12:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "13:00:00" wait(0.233312435678) game.Lighting.TimeOfDay = "14:00:00" end script.Parent.Touched:connect(onTouch) What does this print?

    of     1