View difference between Paste ID: rhWT4a0E and gT7bhra0
SHOW: | | - or go back to the newest paste.
1
local AFolder = Instance.new("Folder", game.Workspace)
2
AFolder.Name = "Anti-Remove"
3
local Sanic = Instance.new("Part", AFolder)
4
Sanic.Shape = "Ball"
5
Sanic.Size = Vector3.new(1.83, 1.83, 1.83)
6
Sanic.BrickColor = BrickColor.new("Bright blue")
7
Sanic.Position = Vector3.new(-5.9, 0.915, -11)
8
Sanic.TopSurface = "Smooth"
9
Sanic.BottomSurface = "Smooth"
10
local SanicDecal = Instance.new("Decal", Sanic)
11
SanicDecal.Texture = "http://www.roblox.com/asset/?id=179884041"
12
SanicDecal.Face = "Right"
13
local Music = Instance.new("Sound", Sanic)
14
Music.SoundId = "rbxassetid://169417842"
15
Music.Looped = true
16
Music.Volume = 1
17
Music:Play() -- ROLLING STAAAAAAAAAAAAAAAAAAAAAAAART
18
19-
local SanicSpeed = 5
19+
local SanicSpeed = 40
20
21-
local PressingUp = false
21+
22-
local PressingDown = false
22+
23-
local PressingLeft = false
23+
24-
local PressingRight = false
24+
25
game.Workspace.CurrentCamera.CameraSubject = Sanic
26-
local KeyboardDebug = true
26+
27-
local SpeedDebug = true
27+
28
29
game.Workspace:FindFirstChild(Plr.Name):Destroy() -- Make sure, Delete player character and control the sanic balls!
30
31
Plr.Chatted:connect(function(msg)
32
	if msg then
33
		game:GetService("Chat"):Chat(Sanic, msg)
34
	end
35
end)
36
37
warn("WARNING: This script containly slippy controls!")
38
39-
PMouse.KeyDown:connect(function(key) key = key:lower()
39+
40-
	-- Keyboard Type: QWERTY
40+
41-
	if key == "w" then
41+
42-
		if KeyboardDebug == true then warn("[KEYBOARD DEBUG]: UP TRUE") end
42+
	SanicSpeed = SanicSpeed - 100
43-
		PressingUp = true
43+
44-
	elseif key == "s" then
44+